bikashjit 0 Report post Posted September 23, 2012 I want a search engine for my website. Just take one simple example, of dictionary websites like http:// dictionary.reference.com when you search any word it searches that word and show you the meaning. just like that, my search engine will search my blog topic and also show me my blog. How will I make like this type of search engine, Does anybody know the source code of doing this.Is there something we can do with java script likeif keyword is 'metals' redirect to this page./metals.htmlif keyword is 'apple' redirect to this page /apple.html Is that possible to put multiple form action url's in single form.Please help me out doing this I really appreciate your any help. Share this post Link to post Share on other sites
rpgsearcherz 5 Report post Posted September 26, 2012 I want a search engine for my website.Just take one simple example, of dictionary websites like http:// dictionary.reference.com when you search any word it searches that word and show you the meaning. just like that, my search engine will search my blog topic and also show me my blog. How will I make like this type of search engine, Does anybody know the source code of doing this.Is there something we can do with java script likeif keyword is 'metals' redirect to this page./metals.htmlif keyword is 'apple' redirect to this page /apple.htmlIs that possible to put multiple form action url's in single form.Please help me out doing this I really appreciate your any help. The closest thing I know how to do would be to use PHP to find "similar" articles. To do that you'd want to use SQL to do something like "SELECT * from xxx WHERE yyy LIKE 'input'"I have no idea how to parse other pages though.If you just wanted it to link up to the other sites (such as a dictionary) you could just plug in the search query to their URL's query spot. An example of this would be like, if their URL goes http://forums.xisto.com/no_longer_exists/, you would just put your query after the = sign. Share this post Link to post Share on other sites