After an incredible match full of reversals, full missed opportunities and of course five goals, the Ghana “pressed” her South Korea (3-2) for the 2nd matchday of the 8th group of the World Cup and took the qualification lead!
THE In-beom Hwang of Olympiakos was excellent as was Cho with the two goals he scored, but Kountos with also two goals from the African side, he “signed” the great victory that brought an explosion and Bento’s dismissal at the end!
In the coach’s mind:
Paulo Bento again selected Kim Seung Joo under the posts and Moon Hwan Kim, Kim Min Jae, Kim Jung Gwon and Kim Jin Soo back four. Jung and Hwang In-bom were in the defensive midfield, three in front of them in the midfield were Kwon, Jeong and Son, while Cho was the only forward.
Otto Ando started Ati Ziggy in goal, with Lambtei, Amartei, Salisu and Mensah in defence. Abdul Samed, Qudous and Partey lined up in a three in the middle, with Jordax and Andre Ayew on the wings, while Inaki Williams was up top.
The match
South Korea came in with their foot on the gas and didn’t let Ghana catch their breath! The Asians were pounding the Africans and had already won seven corners in the 20th minute, but suddenly everything changed. After a foul by Jordan Ayew, the ball fell into the area, did not go away from the defenders and Salisou pushed it into the net for 0-1 in the 24th minute!
Before Huang and co could react, after some excellent ball movement, Jordan Ayew produced a… sick cross and Kundous headed the ball in to make it 0-2 in the 34th minute! South Korea pressed furiously, missed some shots, but could not react until the end of the half.
In 53′, Ziggy made a huge intervention on Cho’s header and after Kim didn’t score an improbable own goal in 55′, Cho with two headers in 58′ and 60′, threw himself into the heart of the defense and leveled the game! But the joy didn’t… last. After a cross from the left in the 68th minute inside the area, there was a chaff by Inaki Williams and a shot by Kundous with a slant for 2-3!
In 77′ Salisu shot over the line, Ji-Sung’s shot “licked” Ziggy’s post, while in 90+5′ the siege was going to succeed, but the Ghanaian goalkeeper said “no” to Cho’s shot ! In the last five minutes the Africans had 11 players in their area and really couldn’t catch their breath, but they held on!
MVP: Does he want a question? Mohammad Quds shone in this match. Along with Cho, they were the ones who scored two goals each, but the fact that the African also scored the winner says a lot. He was really all over the place on offense while also turning up on defense to help out.
Elevens:
South Korea: Kim Seung Joo, Moon Hwan Kim, Kim Min Jae (90+2′ Kwon), Kim Jung Gwon, Kim Jin Soo, Jung (79′ Ui Jo), Hwang In Beom, Kwon, Jeong (46′ Na) , Sean, Cho.
Ghana: Ati Ziggy, Lamptey (79′ Ondoi), Amartey, Salissou, Mensah (88′ Baba Rahman), Abdul Samed, Partey, Kundous (83′ Dzikou), J. Agiou (79′ Sulemana), A. Agiou (78′ Kiere), Williams.
Referee: Anthony Taylor (England)
Read the match live
Follow News Bulletin 247 on Google News to be the first to learn the latest news .
(function($) {
$(“.yamm-fw”).hover(function(){
$(“.billboard-top”).css(‘margin-top’,’250px’);
}, function(){
$(“.billboard-top”).css(‘margin-top’,’0px’);
});
})(jQuery);
/**
* Setup Logger
*/
(function($) {
var i, loggerLogLevels = [“log”, “debug”, “info”, “warn”, “error”],
Logger,
logger,
dummyfunction = function() {};
// Make sure that the log levels exist in our jquery object
for (i = loggerLogLevels.length – 1; i >= 0; –i) { $[loggerLogLevels[i]] = dummyfunction; }
Logger = function () {
if (‘_Logger’ in parent) {return parent._Logger;}
if (‘_Logger’ in window) {return window._Logger;}
window._Logger = this;
var level;
for (i = loggerLogLevels.length – 1; i >= 0; –i) {
level = loggerLogLevels[i];
this[level] = this._log(level);
}
};
Logger.prototype._log = function(level) {
if (‘console’ in window && level in window.console) {
return function(){window.console[level](arguments[0]);};
}
else {
return function () {
var $debug = this._$debug || $(‘
this._$debug = $debug;
$debug.append(‘
‘ + (level != ‘log’ ? level + ‘:’ : ”) + ‘ ‘ + arguments[0] + ”);
};
}
};
if (window.location.toString().indexOf(‘debug=true’) > 0) {
logger = new Logger();
for (i = 0; i 0 ; i–) {
$banner = queque[i-1];
$banner.css($banner.$placeholder.offsetcss());
}
//When finished resync
self.sync();
}, self.interval);
},
push: function($banner, $placeholder) {
$banner.$placeholder = $placeholder;
this.queque.push($banner);
$.log(‘BannerSync: Adding banner with placeholder: #’ + $placeholder.attr(‘id’) + ‘ to the queque’);
if (this.queque.length == 1) {
this.sync();
}
}
};
/**
* We have banner placeholders and the actual banners loaded at the end of
* the page. The banner placeholders have an id of type placeholder__[banner_id]
* and the banners are placed in a div with id banner__[banner_id] witch we will
* call bannerholder
*/
$.fn.attachBanners = function(options) {
var o = $.extend({
attachRetry: 200, //Retry to attach the bannerholder to placeholder in 200millis
syncInterval: 400 //Sync the positions of the bannerholder and placeholder every 400millis
}, options ? options : {}),
banner_sync = new BannerSync(o.syncInterval);
return this.each(function() {
var $placeholder = $(this),
id = this.id.replace(‘placeholder__’, ”),
$bannerholder = $(‘#banner__’ + id),
$banners = $bannerholder[0] ? $bannerholder.find(‘.banner, .textad’) : null,
retry = false, //If something goes wrong just retry after the attachRetry period of time
bannerholderWidth,
bannerholderHeight;
if ($banners && $banners.length > 0) {
if ($banners.is(‘.textad’)) {
$.log(“Attaching the textads ‘” + id + “‘ to it’s placeholder”);
$placeholder.append($banners);
return;
}
//If we have to do with a real banner we have to move to the position
//of its placeholder and resize the placeholder to the banner’s dimensions
bannerholderWidth = $banners.width();
bannerholderHeight = $banners.height();
if (bannerholderWidth !== 0 && bannerholderHeight !== 0) {
$.log(“Attaching banner ‘” + id + “‘ to it’s placeholder with dim: ” + bannerholderWidth + “x” + bannerholderHeight);
$placeholder
.attr(‘class’, function() {
return this.className + ‘ ‘ + $banners.attr(‘class’);
})
.width(bannerholderWidth)
.height(bannerholderHeight);
$banners
.css(‘position’, ‘absolute’)
.css($placeholder.offsetcss());
$bannerholder.css(‘top’, ‘0px’);
//We now make sure that the banner and the placeholder are always in sync
banner_sync.push($banners, $placeholder);
}
else {
retry = true;
}
}
else {
retry = true;
}
if (retry) {
setTimeout(function() {
$placeholder.attachBanners();
}, o.attachRetry);
}
});
};
})(jQuery);
/**
* Initializing Sportfm Statistics Tracker
*/
(function($) {
var SportfmTracker = function() {
$.info(‘Initing sportfm statistics tracker’);
return this;
};
SportfmTracker.prototype = {
trackVideo: function() {
this.track(‘video’, arguments[0]);
},
trackArticle: function() {
this.track(‘article’, arguments[0]);
},
track: function() {
var type = arguments[0],
id = arguments[1],
date = $(“meta[name=”sfm:” + type + “:date”]”).attr(‘content’),
url = _SFM_CONTEXTPATH + ‘/statistics/SPORTFM/’ + type + “https://www.sport-fm.gr/” + id,
r = Math.random() * 100000000000000000;
if (date) {
url += “https://www.sport-fm.gr/” + date;
}
$.getJSON(url, {nocache: r}, function(data, status) {
var bound = $(“meta[name=”sfm:track:bound”]”).attr(‘content’);
if (isNaN(bound)) {
bound = 0;
}
else {
bound = parseInt(bound, 10);
}
$.log(‘Got counter [‘ + data.counter + ‘] with bound [‘ + bound + ‘] response from: ‘ + url);
if (data.counter && data.token && (parseInt(data.counter, 10) > bound)) {
$(‘#readBy’).html(‘Διαβάστηκε ‘ + data.counter + ‘ ‘ + data.token);
}
});
}
};
$.sfm = new SportfmTracker();
})(jQuery);
var _sfm = _sfm || {}; //A global object for sport-fm.gr
_sfm.og_url = $(“head meta[property=’og:url’]”).attr(‘content’);
/** In case we are in an article page we have to track it: */
(function() {
var trackArticleId = $(“meta[name=”sfm:article:id”]”).attr(‘content’);
if (trackArticleId) {
$.sfm.trackArticle(trackArticleId);
}
})();
(function($) {
var ce = function(e) {return document.createElement(e);},
at = ce(‘script’);
at.src=”https://s7.addthis.com/js/300/addthis_widget.js#pubid=ra-50fd52e80b8e50fd”;
at.setAttribute(‘async’, ‘true’);
$(‘head’).get(0).appendChild(at);
})(jQuery);
/** * Attach the banners */
(function() {
$(“div[id^=’placeholder__’]”).attachBanners();
})();
/** * top bar holder */
(function($) {
// twitter
$(document).ready(function() {
/**
* Facebook and Addthis!
*/
window.fbAsyncInit = function() {
FB.init({
appId : ‘1653869474895103’,
xfbml : true,
version : ‘v2.5’
});
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = “//connect.facebook.net/en_US/sdk.js”;
fjs.parentNode.insertBefore(js, fjs);
}(document, ‘script’, ‘facebook-jssdk’));
window.addthis_config = {
“data_track_addressbar” : false
};
});
})(jQuery);
//TO CENTER GOOGLE ADS
(function($) {
window.onload = function() {
setTimeout(function(){ $(‘.GoogleActiveViewClass div div’).addClass(‘center-block’); }, 2000);
};
})(jQuery);
I am currently a news writer for News Bulletin247 where I mostly cover sports news. I have always been interested in writing and it is something I am very passionate about. In my spare time, I enjoy reading and spending time with my family and friends.