ADVERTISEMENT

PH, Singapore eye expanding 'enduring' ties

Published Jun 4, 2025 06:00 pm

At A Glance

  • Both leaders reaffirmed commitments to boosting people-to-people and business ties, especially in high-impact sectors such as renewable energy, humanitarian response, green economy, sustainability, health, and climate resilience.
President Marcos and Singaporean Prime Minister Lawrence Wong vowed to deepen cooperation on digital leadership, defense, and sustainable development, calling the 56-year-old bilateral partnership “enduring” and “dynamic.”

Singaporean Prime Minister Lawrence Wong and President Ferdinand 'Bongbong' Marcos Jr. (RTVM Screenshots)

During their bilateral meeting in Malacañan on Wednesday, June 4, both leaders reaffirmed commitments to boosting people-to-people and business ties, especially in high-impact sectors such as renewable energy, humanitarian response, green economy, sustainability, health, and climate resilience.

President Marcos said he was looking forward to discussing strategic priorities for the years ahead and charting a path of enduring collaboration with meaningful benefits to the citizens of both countries.

He likewise cited the recently launched Digital Leadership Program—jointly implemented with Singapore—which he said aims to equip thousands of Filipino civil servants with digital skills.

"We are grateful to partner with Singapore in building a future-ready, inclusive, and innovation-driven service," the President said, describing Singapore as a "reliable partner."

Wong, for his part, Prime Minister Wong said he was looking forward to building a better relationship with the Philippines.

"I look forward to having this discussion with you, Mr. President, to strengthen our partnership, to build on the strong foundations that our predecessors have laid for us, and to take our relations to even greater heights," he said.

Wong particularly expressed confidence in the "dynamism" of the Philippine economy and said Singaporean investors remain bullish about expanding their presence in the country.

"Singapore businesses are confident in the dynamism and the potential of the Philippines' economy. We are now one of the largest foreign investors in the Philippines," he said.

"The investments have been growing over recent years, and we see potential to do even more. Likewise, Philippine companies have also steadily grown their presence in Singapore," he added.

Regional links

President Marcos emphasized the two nations’ shared responsibility as founding members of the Association of Southeast Asian Nations (ASEAN) to uphold the region's peace, security, and economic integration.

"Our two nations remain resolute in upholding and advancing peace, security, and stability in the region—pillars that have fostered unprecedented growth and the sustained development of our peoples and communities over these last decades," he said.

"Just last week, we met in Kuala Lumpur and reaffirmed these commitments and exchanged views on the situation impacting the regional bloc," Marcos said, referring to ongoing geopolitical tensions and efforts to strengthen ASEAN’s digital and economic frameworks under Vision 2045.

Prime Minister Wong echoed this sentiment, saying it was important for both countries to unite amid uncertainties.

"It is even more important that we stand together. We share a common interest in regional stability and development," Wong added.

With this, the Singaporean leader pledged support for the Philippines' ASEAN chairmanship in 2026.

"We are both founding members of ASEAN, and we share a common interest in regional stability and development," Wong said.

"Singapore is committed to supporting and working closely with you, President, to support your 2026 ASEAN chairmanship," he added.

Wong's visit came a week after both leaders met at the 46th ASEAN Summit in Kuala Lumpur. Marcos thanked Wong for choosing the Philippines as his first official bilateral destination since securing a mandate in Singapore’s May 2025 general elections.

Their last meeting was at the ASEAN Summit in Malaysia, where they joined regional leaders in tackling security, economic, and climate-related concerns.

The Philippines and Singapore established diplomatic relations on May 16, 1969.

Related Tags

President Marcos Bongbong Marcos Lawrence Wong PH-Singapore
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.