So I've tried a lot of different things and have been searching for a solution, but haven't had any luck...
My SPARQL query is
PREFIX dbp: <http://dbpedia.org/resource/>
PREFIX dbpedia2: <http://dbpedia.org/property/>
SELECT ?currentclub
WHERE {
dbp:".$term." dbpedia2:currentclub ?currentclub .
FILTER langMatches(lang(?currentclub), 'en')
}
When the $term equals something with an accent mark in the name it gets all screwed up and no results are given. I tried a bunch of different things, but just can't seem to get any of them to work. Hoping for some help.
Thanks
Edit
I'm using PHP and curl. It's something I downloaded and modified for my needs...here's the part where it communicates with dbpedia.
$searchUrl = 'http://dbpedia.org/sparql?'
.'query='.urlencode($query)
.'&format='.$format;
The $query is posted above and the format being used is json.
Edit 2
Here's the source code for what I'm using. https://gist.github.com/380379 maybe looking at the full code will give you a better idea of what is wrong.
I changed my database field that contains the last name with the accent to 'utf8_unicode_ci', but I'm still stuck and can't find any working solutions.