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
