ADVERTISEMENT

GOSSIP GIRL: How stars manage their chronic sickness

Published May 31, 2022 08:08 am
Dina Bonnevie (GMA Network)

Stars are human beings as well, and some suffer from chronic sickness. When you are suffering from an ailment that lasts for more than six months, that is a chronic sickness, whether it’s as small as a back pain or as big as cancer.  

Last week, we discussed on Daiana Meneses’ victory in her battle with cancer through epigenetics. Let’s talk about more stars on how they handle their chronic diseases.

Dina Bonnevie (GMA Network)

I am currently working with Dina Bonnevie and Alma Moreno on a television project and Dina revealed to me that the last time she danced with Alma Moreno in her previous variety show decades ago, Dina had an asthma attack and was clinically dead for about a few seconds.

Bonnevie has chronic asthma which is triggered by outside environmental pollutants like dust, smoke and in this case fog machines. The two were supposed to be lifted by dancers, and the fog machine was on. The actress suddenly experienced difficulty in breathing because of the smoke emitted by the fog machine and passed out. She was rushed to the hospital and was declared clinically dead for a few seconds, but was revived by a defibrillator in the ambulance.

Alma Moreno (Facebook)

The award -winning actress tells Gossip Girl what happened after she passed out, “I saw myself in a void with a big LED screen and God played my sins on a huge LED screen, but before it could finish I heard my daughter Danica, whose voice was getting louder and louder. Suddenly from nowhere I saw  Danica’s hand from a hole above, and I held on tight to my daughter’s hands who pulled me up and then the vision or dream disappeared, after which I remember gaining consciousness in the ambulance. The nurse in the ambulance said I was clinically dead for several seconds, so they tried to revive my heart, which they did.”

Daiana Menezes

Right now, the actress just keeps her immune system strong to avoid any asthma attacks. “Sleeping six to eight hours a day and eating a balanced diet with lots of vitamins keeps my asthma at bay. As long as my immune system is strong, I don’t get asthma.” 

Alma Moreno also keeps her immune system strong. “If not, my MS (multiple-sclerosis) starts acting up. Sasakit ‘yung ulo ko ng sobra kasi sa Central Nervous System and atake ng may multiple sclerosis. Wala siyang gamot. Nagpunta na ako Boston sa America at nang ma-diagnose ako na may multiple sclerosis, sinabi nila na need ko lang ng malakas na immune system.”

Kris Aquino (Facebook)

Our immune system is the body’s own line of defense. Multiple sclerosis is an autoimmune disease. With MS, the body incorrectly identifies its own myelin, a protein covering that insulates your nerve fibers, as a foreign body and the immune system sends disease-fighting cells to attack its own myelin. I researched on MS, and up to this moment there are no advance research suggesting that there is cure for MS or multiple sclerosis. 

Kris Aquino is lucky because both her autoimmune diseases -- chronic spontaneous urticaria and autoimmune thyroiditis -- have cures. In an Instagram post, she tells her fans and followers that she will be leaving the country to seek cures abroad. Bottomline of this article is for you, my readers, to keep yourselves healthy and avoid chronic diseases. Let my favorite philosopher Hippocrates give you a piece of advice: “Let food be thy medicine.” Let’s not wait for the time that medicine will be your only food. I rebuke that for myself and for all my readers. Amen.

Related Tags

almamoreno DinaBonnevie daiana menezes gossipgirlgisellesanchez
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.