I have a working PHP API script, using it for pulling out data with FQL.
However, when I add clauses to the WHERE part (Album/Person name, for example), like name="שלום", which include Hebrew, I get empty results.
When using English names, like name="hello" I get full data.
I've double checked it - I should get data because I do have relevant albums with those Hebrew expressions.
I don't really know if it's a FQL or PHP issue, but this just seems like a technical issue.
$fql = "SELECT aid,
owner,
link
FROM album
WHERE owner IN (SELECT uid
FROM USER
WHERE uid IN (SELECT uid2
FROM friend
WHERE uid1 = Me()))
AND name = 'עברית'
";
$param1 = array(
'method' => 'fql.query',
'query' => $fql,
'callback' => ''
);
$fqlResult1 = $facebook->api($param1);
How can I fix it?

.phpfiles, what are you using? – Adnan Aug 17 '12 at 11:10