Вы можете использовать PHP, чтобы разделить строку на вашего персонажа
<?php
// Put the data in to a string
$string = 'Málaga - Real Madrid';
// Split it by the character
$split_string = explode('á', $string);
//***
login & select database
***/
$mysqli->query('set names utf8');
// Put the first split in to the real_escape function
$title = $mysqli->real_escape_string($split_string[0]);
// Run the query
$mysqli->query("INSERT INTO article (title) VALUES ('$title')");
?>