ADVERTISEMENT

What to eat to beat cancer

Published Feb 6, 2018 12:05 am
By Cheshire Que, RND, RN, RD When an individual is diagnosed with cancer, he or she would naturally adapt some lifestyle modification, which includes diet. The family members also try their best to show their support by providing all kinds of food that they deem nutritious and anti-cancer. Because there is so much information readily available online with just one click, it tends to get confusing. Which tip should one follow in order to prevent and fight cancer? Should someone with cancer become vegan? Are antioxidants and supplements helpful or pose more harm during cancer treatment? Should meat be totally removed from one’s diet? The questions are endless. 3 Frustration is not uncommon especially when one begins to avoid so many food items and often find themselves left with limited food choices, which not only compromise nutrition but quality of life as well. Dr. Denky Dela Rosa, a cancer specialist at St. Luke’s Medical Center, Global City and an associate professor at UERM in Quezon City, sheds some light on the issue of what to eat to beat cancer. “The most common question that patients ask me when they are diagnosed with cancer is ‘What should I eat?’ and the underlying tone of that question is: What should I eat to zap away the cancer?” says Dr. Denky. The cancer specialist is set to correct misconceptions about simply adding cancer fighting food and taking supplements to arm us in the fight against cancer. “It’s not just about adding cancer fighting food or taking the supplements, it’s about taking a look at the whole diet. For example, if what we eat consists mostly of fast food, instant noodles, canned goods, boxed foods, tocino, longganisa, bacon, sugary beverages such as iced teas or fruit juice from concentrates that are loaded with tons and tons of sugar, then simply adding cancer fighting food or taking the supplements will not be enough,” says Dr. Denky. It just goes to show that we cannot solely rely on supplements to keep us cancer free. If you must take supplements, make sure they are prescribed by your physician or dietitian and they must be taken together with a well-balanced diet that is suited to your lifestyle and nutritional requirements. A little bit of caution on those undergoing chemotherapy treatments. Taking antioxidant supplementation may even be detrimental to your condition as it may decrease the potency of chemotherapeutic drugs. Whether you have cancer or any other lifestyle-related diseases such as diabetes, gout, PCOS, hypertension, heart disease, the optimal diet is essentially the same. Dr. Denky describes this diet as composed of mostly plant foods such as unprocessed vegetables, fresh fruits, whole grains, beans, healthy fats like avocado, coconut oil, coconut milk, and olive oil. Sugary beverages must be avoided, as well as, processed meats and fried food. “Our plate should ideally contain two-thirds or more of vegetables, some whole grains or beans and one-third or less of animal protein. Remember the good fats!” advised Dr. Denky. The cancer specialist also encourages everyone to read nutrition labels and list of ingredients. Stay away from trans-fats and anything that has hydrogenated or partially hydrogenated oils. As for protein consumption and cancer, Dr. Denky clarifies that regardless of the protein source, whether fish, chicken, pork, or beef, too much consumption of animal protein is not good. For those who have totally removed animal protein from their diet, it is important to watch the carbohydrate intake as it may increase blood glucose level, especially among individuals with diabetes. Dr. Denky gave a warning to all who have turned their backs on animal protein: “Be careful about meat substitutes, especially vegemeats. Not all vegemeats are made from whole plants. Some of them are made from isolated plant proteins and may contain added oils and chemicals that can make them as bad as processed meats.” Transitioning to a plant-based diet can be overwhelming and Dr. Denky leaves us with this practical tip: “Don’t expect to be able to change everything overnight. I recommend you adapt one change at a time such as cutting down on sugary drinks or added sugar. Consume a cup of vegetables per day. The key is to be consistent and persistent. Lastly, we will all slide back. Don’t worry. There is no competition. It’s okay to start all over again.”   [email protected]; www.cheshireque.com; Instagram/@cheshirequerdn
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.