I am trying the following:
mysql_query("SELECT `lastUpdate` FROM `summoner` WHERE `name` = '$summoner['name']';");
But it doesn't work. I think its because of the '
in $summoner['name']
.
Any way to workaround without:
$summonerName = $summoner['name'];
?