I do execute a SQL string via PHP.
SELECT *
FROM dDokumente
WHERE dMandant = '26'
AND dName LIKE '%wäsche%'
AND dActive = '1'
ORDER BY dDokID
if I execute it via PHP MyAdmin I get 2 results (which is correct) but as soon as I execute it via my PHP page it shows 0 results.
MySql Database is UTF8_general_ci.
The SQL string seems to be correct if I display it on the page.
Does anyone have an idea what I could do?