saltem8 Posted April 26, 2008 Share Posted April 26, 2008 i wanted to make a search engine for my site i have something very specific in mind, i want the search to include Search Suggestions alot like ask.com so when they start typing, possible results come up, let me show you what i have my table is as follows CREATE TABLE `recipes` ( `Id` mediumint(13) NOT NULL auto_increment, `title` varchar(255) NOT NULL default '', `yield` varchar(255) NOT NULL default '', `instructions` text NOT NULL, PRIMARY KEY (`Id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=315743 ; and i am going to make the results display within my sites template, linking to anther file that will pull the choosen result and display the recipe so it is really just a search engine for my own site i suppose with Search suggestions these results are coming from my database, i have found a search engine suggestion script, but it is ajax, can anyone give me a hand setting it up please as i have never even tried to use ajax, - i do have a search script though, i just need the ajax to intregrate with my search results - the complete set up thanks http://www.petefreitag.com/item/605.cfm http://script.aculo.us/downloads Link to comment https://forums.phpfreaks.com/topic/103037-first-ever-attempt-at-ajax-search-engine-suggestions/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.