Oud lid |
|
Hoe kan ik alle resultaten optellen en in een var krijgen voor deze query?
<?php
$sql = "SELECT MATCH title, content AGAINST ('test') as relevance, title, content, author, postdate, tagid, comments FROM tbl_posts WHERE title LIKE '%test%' OR content LIKE '%test%'
ORDER BY relevance DESC LIMIT 0,10";
?>
<?php $sql = "SELECT MATCH title, content AGAINST ('test') as relevance, title, content, author, postdate, tagid, comments FROM tbl_posts WHERE title LIKE '%test%' OR content LIKE '%test%' ORDER BY relevance DESC LIMIT 0,10"; ?>
ik probeer momenteel met
<?php
$result = mysql_query($sql);
$numrows = mysql_num_rows($result);
?>
maar hiermee krijg ik steeds 10, aangezien ik de resultaten per 10 wil teruggeven wss, iemand een oplossing voor dit probleem?
alvast bedankt
wimmarien schreef: Ook voor kleine lappe code code-tags gebruiken aub.
|