I have this code in PHP:
$_pagi_sql='SELECT * FROM programas WHERE MATCH(titulo, texto,pais) AGAINST ('"$criterio"' IN BOOLEAN MODE) AND operador=34 And validez >= NOW()';
I want to put exactly this string in the variable $_pagi_sql:
SELECT * FROM programas WHERE MATCH(titulo, texto,pais) AGAINST ('"STH"' IN BOOLEAN MODE) AND operador=34 And validez >= NOW()
However the double quotes are not properly stored in the variable $_pagi_sql
How can it be done?