Saturday 28/March/2026 – 02:14 AM

















Egypt’s national football team achieved its first under the leadership of Brigadier General Hossam Hassan A sweeping victory over its brother, Al-Akhdar Al-Saudi, in Jeddah, with a score of 4-0 in a friendly match. In preparation for the 2026 World Cup.

Hossam Hassan gains from the friendship of Egypt and Saudi Arabia

In the following lines, Cairo 24 reviews the most prominent gains achieved by Hossam Hassan, the coach of our national team, from the friendly matches between Egypt and Saudi Arabia, regardless of the outcome of the match.

A sweeping victory over an Asian team in performance and result

The most important and most prominent gain is the sweeping victory over the Saudi Arabian national team – the Asian team – in its homeland, both in performance and result, before the start of the 2026 World Cup finals, where the Pharaohs are in the seventh group, accompanied by another Asian team, which is the Iranian national team. Therefore, Hossam Hassan, the coach of our national team, knew the way the Asian teams play, which are usually similar to each other, through two matches, the first of which was against the Uzbekistan national team that had already qualified for the World Cup last November and lost. With a double without a response in the Emirates, and the second was yesterday against Saudi Arabia, which already qualified for the World Cup and won 4-0.

<strong>Egypt national team</strong>” width=”1023″ height=”576″/><figcaption><strong>Egypt national team</strong></figcaption></figure>
<h3><strong>Gain confidence before facing La Roja</strong></h3>
<p>The Egyptian national team will head to Barcelona this morning to face its Spanish counterpart in a new friendly in preparation for the World Cup on Tuesday, March 31, and yesterday’s victory over Saudi Arabia certainly gave confidence to the players and the technical staff led by Hossam Hassan before facing the El Matador, the most prominent candidate to win the 2026 World Cup, which is the team that currently tops the world rankings, and the last Euro champion.</p>
<figure class=<strong>Spain National Team</strong>” width=”680″ height=”383″/><figcaption><strong>Spain national team</strong></figcaption></figure>
<h3><strong>A group performance in the absence of the leader… recording new faces and the return of the spirit</strong></h3>
<p>Hossam Hassan surprised everyone the moment the list was announced by calling up the Cleopatra Ceramica player, “Islam Issa,” and the latter did not disappoint, as he scored his first international goal in a wonderful way, which was the first goal for the Egyptian national team against Saudi Arabia, which paved the way for a historic quadruple for the Pharaohs on Saudi soil, specifically at Al-Enmaa Stadium in the city of Jeddah.</p>
<p>In addition to Islam Issa scoring, Trezeguet, Zizo and Marmoush scored, and the spirit returned to the Egyptian national team players, as this was clearly evident after scoring any goal through celebrations or the desire to score more goals.</p>
<figure class=<strong>Islam Issa, the Egyptian national team player, celebrates his goal against Saudi Arabia</strong>” width=”1024″ height=”576″/><figcaption><strong>Islam Issa, the Egyptian national team player, celebrates his goal against Saudi Arabia</strong></figcaption></figure>
<p>In the absence of leader Mohamed Salah due to injury, we witnessed a distinguished collective performance from the Pharaohs’ stars, and now relying on team play and performance, not individual or reliance on a specific player, and thus it is a point in Hossam Hassan’s favor, in anticipation of any obstacles or circumstances that the Egyptian team may face in the upcoming matches, which may be represented, for example, in the absence of Mohamed Salah for any circumstance, and thus Hossam Hassan now has many plans that he can rely on to compensate for the absence of the Pharaohs’ captain for any circumstance.</p>
<h3><strong>The return of Mohamed Abdel Moneim.. and the participation of Haitham Hassan</strong></h3>
<p>The beautiful thing is that Mohamed Abdel Moneim, the Pharaohs’ defender, is back on the field after an absence that lasted 335 days, when he suffered an injury with Nice in the Paris Saint-Germain match by tearing his cruciate ligament. He participated in the 85th minute of the match and returned again.</p>
<figure class=<strong>Mohamed Abdel Moneim</strong>” width=”1024″ height=”576″/><figcaption><strong>Mohamed Abdel Moneim</strong></figcaption></figure>
<p>Haitham Hassan, the Real Oviedo player, also appeared for the first time in the Egyptian national team shirt, and he performed well, as he played from the beginning of the second half in the right wing position, a position that became known as “Mohamed Salah.”</p>
<p>Haitham Hassan played the entire second half, and received a rating of “7.1.” He touched the ball 27 times, created one chance, shot one shot on goal, but goalkeeper Nawaf Al-Aqidi blocked it. He made 13 correct passes out of 14, completed 2 correct dribbles, recovered the ball 4 times, and made 2 successful interventions out of 3.</p>
<figure class=<strong>Haitham Hassan</strong>“/><figcaption><strong>Haitham Hassan</strong></figcaption></figure>
</p></div>
<p><script type= replaceOembeds(); function replaceOembeds() { var allEmbeds = document.getElementsByTagName("OEMBED"); while (allEmbeds.length != 0) { replaceOembedWithHtml(allEmbeds[0], extractLinkFromOembed(allEmbeds[0])); allEmbeds = document.getElementsByTagName("OEMBED"); } runYoutubeLazyLoad(); window.onscroll = function () { loadAPI(); window.onscroll = null; } // loadfbApi(); } function replaceOembedWithHtml(element, sourceData) { if (sourceData.source.toLowerCase() === "youtube") { var html="
" + '
' + '
' + '
' + '' + '
' + '
'; replaceElementWithHtml(element, html); } else if (sourceData.source.toLowerCase() === "instagram") { var html="
'; replaceElementWithHtml(element, html); } else if (sourceData.source.toLowerCase() === "twitter") { var html="
'; replaceElementWithHtml(element, html); } else if (sourceData.source.toLowerCase() === "facebook") { var html="
' replaceElementWithHtml(element, html); } else { replaceElementWithHtml(element, ""); } } function extractLinkFromOembed(element) { return getUrlSource(element.getAttribute("url")); } function getUrlSource(url) { var ytRegex = /http(?:s?):\/\/(?:www\.)?youtu(?:be\.com\/watch\?v=|\.be\/)([\w\-\_]*)(&(amp;)?‌​[\w\?‌​=]*)?/; var instaRegex = /(https?:\/\/www\.)?instagram\.com(\/p\/(\w+)\/?)/; var twitterRegex = /twitter\.com\/.*\/status(?:es)?\/([^\/\?]+)/; var fbRegex = /^https?:\/\/www\.facebook\.com.*\/(video(s)?|watch|story|posts)(\.php?|\/).+$/; if (ytRegex.test(url)) { return { source: "Youtube", url: url, id: ytRegex.exec(url)[1] }; } if (instaRegex.test(url)) { return { source: "Instagram", url: url, id: instaRegex.exec(url)[3] }; } if (twitterRegex.test(url)) { return { source: "Twitter", url: url, id: twitterRegex.exec(url)[1] }; } if (fbRegex.test(url)) { return { source: "Facebook", url: url, id: fbRegex.exec(url)[1] }; } return { source: "Unknown", url: url, id: "" }; } function replaceElementWithHtml(element, html) { var str = html; var Obj = element; //any element to be fully replaced if (Obj.outerHTML) { //if outerHTML is supported Obj.outerHTML = str; ///it's simple replacement of whole element with contents of str var } else { //if outerHTML is not supported, there is a weird but crossbrowsered trick var tmpObj = document.createElement("div"); tmpObj.innerHTML = ''; ObjParent = Obj.parentNode; //Okey, element should be parented ObjParent.replaceChild(tmpObj, Obj); //here we placing our temporary data instead of our target, so we can find it then and replace it into whatever we want to replace to ObjParent.innerHTML = ObjParent.innerHTML.replace('
', str); } } function loadfbApi() { var js = document.createElement('script'); js.src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v3.2"; document.body.appendChild(js); } function runYoutubeLazyLoad() { /// youtube lazyload var youtube = document.querySelectorAll(".youtube"); for (var i = 0; i < youtube.length; i++) { var source = "https://img.youtube.com/vi/" + youtube[i].dataset.embed + "/0.jpg"; var image = new Image(); image.src = "/themes/cairo2/assets/images/no.jpg"; image.classList.add('lazyload'); image.setAttribute("data-src", source); image.setAttribute("alt", "youtube"); image.addEventListener("load", function () { youtube[i].appendChild(image); }(i)); youtube[i].addEventListener("click", function () { var iframe = document.createElement("iframe"); iframe.setAttribute("frameborder", "0"); iframe.setAttribute("allowfullscreen", ""); iframe.setAttribute("src", "https://www.youtube.com/embed/" + this.dataset .embed + "?rel=0&showinfo=0&autoplay=1"); this.innerHTML = ""; this.appendChild(iframe); }); }; }

LEAVE A REPLY

Please enter your comment!
Please enter your name here