[SQL] wat is er fout
Kay Kay
17/03/2009 18:48:00Ik maak een zoek functie voor het forum. Ik gebruik MySQL (helaas).
Die code heb ik nou.
var in = t.titel, t.bericht
De foutmelding:
Wat is er fout dan?
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
SELECT
t.bericht,
t.titel,
MATCH(".$in.") as score
FROM
topics as t
LEFT JOIN
reacties_forum as r
ON r.tid = t.id
WHERE
MATCH(".$in.") AGAINST('".$z['q']."' IN BOOLEAN MODE)
ORDER BY
score ASC
t.bericht,
t.titel,
MATCH(".$in.") as score
FROM
topics as t
LEFT JOIN
reacties_forum as r
ON r.tid = t.id
WHERE
MATCH(".$in.") AGAINST('".$z['q']."' IN BOOLEAN MODE)
ORDER BY
score ASC
Die code heb ik nou.
var in = t.titel, t.bericht
De foutmelding:
Quote:
to use near 'as score FROM topics as t LEFT JOIN reacties_forum as r ON r.t' at line 4
Wat is er fout dan?
PHP hulp
21/11/2024 20:31:55Frank -
17/03/2009 18:52:00MATCH() ....
Daar mist iets, AGAINST() om precies te zijn. Zie de foutmelding, die begint op het punt dat er wat ontbreekt.
Daar mist iets, AGAINST() om precies te zijn. Zie de foutmelding, die begint op het punt dat er wat ontbreekt.
Kay Kay
17/03/2009 19:16:00Oke thnx :) Ik heb verkeerd gekeken in een tutorial..
Ik wist niet dat de foutmelding begint op het punt waar het fout gaat. Weer wat geleerd.
Ik wist niet dat de foutmelding begint op het punt waar het fout gaat. Weer wat geleerd.