ADVERTISEMENT

'No injuries of concern' for Prince Philip, 97, after car crash

Published Jan 19, 2019 09:52 am
By Agence France-Presse Queen Elizabeth II's 97-year-old husband Prince Philip visited hospital for "a precautionary check-up" on Friday that found "no injuries of concern" after a car crash the previous day that rolled the Land Rover he was driving. Prince Philip emerged unscathed from the accident in which two people were injured (AFP / MANILA BULLETIN) Prince Philip
(AFP / MANILA BULLETIN) "On doctor's advice the Duke of Edinburgh visited the Queen Elizabeth hospital... this morning for a precautionary check-up," a Buckingham Palace spokeswoman told AFP. "This confirmed his royal highness had no injuries of concern," she added, without specifying the extent of any minor injuries. This contrasted with a statement from Buckingham Palace on Thursday that stated the prince "was not injured". The queen has issued no public comment about the crash. The accident occurred near the queen's Sandringham Estate in south east England, where the couple spend much of the winter. A nine-month-old baby who was in the back seat of the other car, a Kia hatchback, was also uninjured, while one woman in the vehicle broke her wrist and the other cut her knee, local police said, stirring a debate in Britain Friday about old age and driving. "We are aware of the public interest in this case, however, as with any other investigation it would be inappropriate to speculate on the causes of the collision until an investigation is carried out," a police statement said. Images published by the British media showed a dark Land Rover on its side by the curb, driver's side down, its windscreen smashed, glass and metal debris scattered across a road running by a leafy park. "I was driving home and I saw a car, a black (Land) Rover come out from a side road and it rolled," witness Roy Warne told BBC Radio on Friday. The Land Rover "was turning on its side over and over," he told The Sun newspaper in a separate interview. He said one of the two women in the Kia "was the mother of the child and she was quite upset". Philip and the other driver were given breath tests, which is standard police procedure. No alcohol was detected. The accident made the headlines in most British papers. "MY LEGS! MY LEGS!" The Sun splashed on its front page -- the words Prince Philip reportedly "yelled" as he was pulled from the wreckage. "I was blinded by the sun," the paper quoted him as saying. Love for speed Philip, known for his forthright manner and off-colour jokes, retired from public life in 2017 and underwent a hip replacement operation last April. Tall, slim and built like a retired soldier, the former air force pilot spends most of his time driving, gardening and enjoying family life at royal estates, according to Buckingham Palace. He was last seen in public with the queen at Princess Eugenie's wedding in October. But he missed the royal family's annual Christmas Day church service. Known as the Duke of Edinburgh in Britain, Philip is also well-known for his love for speed. The royal family website says the duke "learned to fly all type of aircraft", passing a Royal Air Force test in 1953. In 2016, alongside the queen, he drove former US President Barack Obama and his wife Michelle around Windsor Castle after they landed nearby in the presidential helicopter. 'Age-old debate' The accident stirred up what The Sun described as Britain's "age-old debate" about whether and when the elderly should give up driving. The issue is especially sensitive in the case of the royals, with the Daily Mail noting: "There's only one person who can tell him to stop driving. But will she dare?" Official figures from November show 3,136 people in Great Britain aged 97 and over still hold driving licences. The oldest were four people aged 107. In Britain, licences expire when a person turns 70 and have to be renewed through a simple self-assessment test every three years. The Daily Mail asked whether the duke would now "sacrifice one of his last indulgences". The BBC's Dymond suggested that he might. "It might be that the duke is about to be persuaded to give up the wheel."
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.