Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to have a full-text search

says there is no data

CREATE TABLE IF NOT EXISTS `opportunities` (
  `opportunity_id` int(11) NOT NULL AUTO_INCREMENT,
  `hotel_id` int(11) NOT NULL,
  `opportunity_code` varchar(20) COLLATE utf8_bin DEFAULT NULL,
  `opportunity_title` varchar(255) COLLATE utf8_bin DEFAULT NULL,
  `opportunity_destination` varchar(255) COLLATE utf8_bin DEFAULT NULL,
  `opportunity_content` text COLLATE utf8_bin,
  `opportunity_start_date` int(11) NOT NULL,
  `opportunity_end_date` int(11) NOT NULL,
  `opportunity_conditions` text COLLATE utf8_bin,
  `opportunity_sales_quota` decimal(3,2) NOT NULL,
  `opportunity_status` int(1) NOT NULL,
  PRIMARY KEY (`opportunity_id`)
) CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ENGINE=MYISAM;

ALTER TABLE `opportunities` ADD FULLTEXT `opportunities_index` (`opportunity_destination`)

SQL CODE index did

$opportunitiesSql = ('SELECT * from sondakikalar_opportunities WHERE MATCH (opportunity_destination) AGAINST(".$search.")');

    foreach($database -> table($opportunitiesSql) as $read)
    {
        $template -> loop('OPPORTUNITIES',array
        (
            'OPPORTUNITY_ID'          => $read -> opportunity_id,
            'HOTEL_ID'                => $read -> hotel_id,
            'OPPORTUNITY_TITLE'       => $read -> opportunity_title,
            'OPPORTUNITY_DESTINATION' => $read -> opportunity_destination
        ));
    }

PHP I did like full-text search

What should I do so for php mysql full text search

share|improve this question
If your search word quite common in your data? – juergen d Oct 18 '12 at 11:06

closed as not a real question by hakre, Robert Harvey Oct 18 '12 at 22:55

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

A natural language search interprets the search string as a phrase in natural human language ... In addition, words that are present in 50% or more of the rows are considered common and do not match.

That means if you search for something that 50 percent of your records contain, it will be filtered out from the results.

Taken from here

share|improve this answer
So what should I do – Batuhan Berkay Göksu Oct 18 '12 at 11:19
If you want to search for stuff that most of your records contain, then use other search options. Example: where locate(opportunity_destination, '$search') > 0 – juergen d Oct 18 '12 at 21:14

Not the answer you're looking for? Browse other questions tagged or ask your own question.