Great , Thanks for the advice 🙂 , Works like a charm.
Have the same problem but now I am trying to find a substring in an varchar field.
$result = mysql_query ("SELECT * FROM $table WHERE stristr(title) = "$question" ORDER BY nummer DESC");
Is what I am trying to get a faster result.
What I am using now is :
$result = mysql_query ("SELECT * FROM $table ORDER BY nummer DESC");
while ($row = mysql_fetch_array ($result)){
extract ($row);
if (stristr($titel,$question)) {
echo"";}
And again , this works , but not like it should 😕
SELECT titel from $table where 1 and titel like "%$question%" LIMIT 0, 30