ADVERTISEMENT

Hello again, health center

Published Mar 15, 2024 04:03 pm

HOTSPOT

12 points on the Omicron surge

Before February ended, right smack on the year’s leap day, I had a health emergency.


Not feeling well but still lucid, I was able to bring myself to a nearby health center. I got checked by a doctor, received a prescription for maintenance (ha!), and was ordered to undergo tests. The dispensary officer gave me a month’s supply of my prescribed medicines. The staff said it was good I went there immediately because otherwise, it would have been the emergency room for me.


At the follow-up check-up the following week, the doctor pored through the pages of test results and confirmed the initial diagnosis. No, sorry to disappoint my enemies and detractors, but it is not that serious. I just have to take my medicines, change my diet, sleep early, and get some daily exercise.


If you read closely though, you would have noticed that I went to a health center. Yes, a health center. Why not? We’re all entitled to public health services. Besides, when I checked the clinics and hospitals nearby, the health center happened to be the nearest to me.


We’ve all heard about the wonderful health and other social benefits of Makatizens. Quezon City has dozens of health centers and even “super health centers,” as well as social hygiene clinics.


QC has health programs for community-based mental health, family planning, nutrition, cancer, dental, non-communicable disease prevention, maternal and child care, and tuberculosis, adolescent care, senior care, epidemiology and surveillance, free medicines, and medical morbidity. (The district congressman this month opened a free diagnostic clinic.)


When I went to my follow-up, the health center was packed, seemingly without any order. Seniors, pregnant women, new mothers and their babies, and people like me were waiting and milling around. I thought it would take me hours before seeing the doctor.


But it turns out there’s a process where health workers vet the people, assign a number, and then call out names when it is one’s turn. There were also a lot of doctors that morning, with one of them giving a talk about dengue. By some magic, the system worked.


Simultaneously, the seniors were able to get their meds from the dispensary, those needing checkups got to see a doctor, and the mothers got the “bakuna” for the babies.


As a “Batang Public School,” I am also a “Batang Health Center.” When we were in our younger years at Dr. Alejandro Albert Elementary School in Sampaloc, Manila, we would have annual physicals and receive mandatory shots as well.


This experience with public health workers and doctors would continue at UPLB, where no freshman could start university admission without a visit to the Infirmary.


One time, when a friend and I were in a road accident in Puerto Princesa, we split our ways. My friend went to a private hospital, while I took the tricycle to the provincial hospital which at the time looked quite old.


We compared our experiences at the hospitals after. We were given the exact same treatment. But he spent several thousand pesos at the medical center. I forked out less than ₱200 for gauze, bandage, and ointment which the doctor ordered and applied. I believe I also received a free tetanus shot.
When my eldest nephew’s partner was about to have their baby, we brought them to Bulacan Provincial. The baby’s normal delivery was free of any charge. Our parents were impressed by the public hospital’s well-lit, fully-airconditioned nursery and post-maternity unit which was brand new at the time.


During the pandemic, public health workers played a lead role. In what could be a preview of a genuine universal health care system we deserve and thus we should build, we got our “bakuna” shots — two initial doses plus two boosters — for free. It is the kind of investment that’s legitimately good for us.
I’m not saying that everything’s great in our public health centers. I just attest to how dependable they have been to me and many others. I have also met amazing doctors who signed up for the Doctors To The Barrios program.


You wouldn’t know what’s there until you visit the health center nearest you, or even just take a peek at your area’s health department’s Facebook Page.
If our area has awful public health centers, the response is not to go private and fend for ourselves. Press government to prioritize people’s health, and support our public health workers.

Related Tags

Tonyo Cruz HOTSPOT
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.