Welcome Guest, Not a member yet? Register   Sign In
Need help with search engine
#8

[eluser]Randy Casburn[/eluser]
@M4rc0 - you did fine! The only mistake you made was running the query twice. The second time you ran it, you queried every record. Check the docs. Here is the mistake:

[quote author="M4rc0" date="1222474337"]Here's my code:
Code:
QUERY 1)        $this->db->query('SELECT * FROM movies WHERE MATCH (name,director,actors,country,year,comment) AGAINST ('.$keywords.' WITH QUERY EXPANSION);');        
QUERY 2)        $query = $this->db->get('movies');
[/quote]

The only thing you should have to do to correct this is remove:

Code:
QUERY 2)        $query = $this->db->get('movies');

and then you should be able to find your results thus:

Code:
foreach ($query->result() as $row)
{
   echo $row->title;
   echo $row->actor
   echo $row->yada;
}

Hope this helps,

Randy


Messages In This Thread
Need help with search engine - by El Forum - 09-26-2008, 01:12 PM
Need help with search engine - by El Forum - 09-27-2008, 10:15 AM
Need help with search engine - by El Forum - 09-27-2008, 11:50 AM
Need help with search engine - by El Forum - 09-27-2008, 12:05 PM
Need help with search engine - by El Forum - 09-27-2008, 12:07 PM
Need help with search engine - by El Forum - 09-27-2008, 12:14 PM
Need help with search engine - by El Forum - 09-27-2008, 12:17 PM
Need help with search engine - by El Forum - 09-27-2008, 12:38 PM
Need help with search engine - by El Forum - 09-27-2008, 02:20 PM
Need help with search engine - by El Forum - 09-27-2008, 03:22 PM
Need help with search engine - by El Forum - 09-27-2008, 09:12 PM
Need help with search engine - by El Forum - 09-28-2008, 02:48 AM
Need help with search engine - by El Forum - 09-28-2008, 09:08 AM
Need help with search engine - by El Forum - 09-28-2008, 10:11 AM
Need help with search engine - by El Forum - 09-28-2008, 10:16 AM



Theme © iAndrew 2016 - Forum software by © MyBB