I need advice on jsp seach form and "clipboard" Programming Web Development by kohuke …;NetBeans 6.5 beta". ***I have to make a seach jsp page that searches by different parameters stuff from database… i could use some help in the binary seach tree Programming Software Development by icemori i started this code for the binary seach tree but i'm going crazy i cant draw the … seach all Programming Software Development by jontennyeah i have a 1 listview with the records from my ms access datebase. Can you help me to work with the button than can search all the records in each cell / subitems on the listview? THAnKS godbless :) Re: seach all Programming Software Development by Begginnerdev Do you have any code thus far? We can't simply do the work for you. For all that we know, you could be asking for homework "help" Re: seach all Programming Software Development by jontennyeah no sir i didnt have the codes for this. I still do some reseacrh about that but unfortunately , i haven't see yet an article or threads in other forums that can help to do what i want in my project. So im here to ask who can help me :) Re: Passing Seach Queries to Google Custom Search Programming Web Development by BlueCharge … in the GET method then it will just display the seach box on the search page which it does already. Thank… online Video Contest from google Programming Computer Science by adkool Seach engine giant google.com has launched online video contest. To enter, Create a video of you building the Google Chrome Icon. Last Day for submission : July 22, 2009 read more & watch their video SNIP seach a key word in a table Programming Web Development by lydia21 hi i have a form where the user will giva a key word ...based on the keyword i wabt the user to fetch all the rows in the table Re: seach a key word in a table Programming Web Development by nav33n [code=mysql] select * from table where keyword like "%$keyword%"; [/code] $keyword = user input. seach engine Community Center by anushiya can anyone tell me search engines available other than google Re: seach engine Community Center by timz [QUOTE=anushiya;648043]can anyone tell me search engines available other than google[/QUOTE] Google Yahoo MSN AOL Ask Re: seach engine Community Center by Salem It might seem ironic, but did you think of typing "search engine" into a [URL="http://www.google.co.uk/search?hl=en&q=search+engine"]search engine[/URL] Re: seach engine Community Center by dirt14 [url]www.cuil.com[/url] another one Re: seach engine Community Center by angellpparker ya sure.....in world there are 197 search engines are there......ask,aol,yahoo,msn..there are differnt search engines there in the net....... Re: seach engine Community Center by ithelp [QUOTE=angellpparker;667105]ya sure.....in world there are 197 search engines are there......ask,aol,yahoo,msn..there are differnt search engines there in the net.......[/QUOTE] There are more than 300000 search engines where did you get the 197 figure ? Re: seach engine Community Center by abetageek [QUOTE=anushiya;648043]can anyone tell me search engines available other than google[/QUOTE] Type search engines into google also metasearch engines also clustering metasearch engines also boolean search engines Re: seach engine Community Center by abetageek [QUOTE=anushiya;648043]can anyone tell me search engines available other than google[/QUOTE] there are thousands of search engines Re: seach engine Community Center by abetageek my favorite is kartoo Re: seach engine Community Center by b1sh try Ask.com yahoo.co.uk or answers.com Re: seach engine Community Center by sittas87 two words: just google (friend) :) Seach engine for database data Programming Web Development by stanley87 I am developing a search engine that match keyword search for game title and category game that is limited for three keyword search.i am facing some problem that need to swap among the keywords more than using one keyword search.Any guys can help me or give me some guide on the way of searching the keywords. function search_game_test(){ … Re: Seach engine for database data Programming Web Development by smantscheff It would be easier for us to help you if you would clearly state your problem. Re: Seach engine for database data Programming Web Development by stanley87 sorry for giving not clear info,let say i have game title harry porter 2 , and then the user type in "porter harry' , i wanna the result swap among the keywords and match with the "harry porter" and show the result. Re: Seach engine for database data Programming Web Development by smantscheff Where do you look for keywords? In one table column or in several? In one table or in several? Why do you have to swap the keywords? Would the result be different for "porter harry" and for "harry porter"? Re: Seach engine for database data Programming Web Development by stanley87 i am searching in several table but in the same database, let say i am searching 3 keywords together ,so i have to split them all and match any combination among three keywords, let say the "harry potter" = 2 keywords searching,but my result would me match the word "harry potter" as 1 keyword , or seperate the "harry" … Re: Seach engine for database data Programming Web Development by smantscheff Sou you want to match one, two or more keywords to various fields in the database. I recommend a regular expression search over a concatenation of fields. Example: [ICODE]select * from table1 join table2 on table1.id=table2.id where concat(table1.field1, ' ', table1.field2, ' ', table2.field1) rlike "(keyword1|keyword2)"[/ICODE] Re: Seach engine for database data Programming Web Development by Web Dev Rob Slightly off topic, but have you considored using MySQL's full text searching instead of LIKE? Re: Seach engine for database data Programming Web Development by stanley87 i wanna add some limitation which is the query must not burden the bandwidth using because the searching in doing on the wap site and have the phone limitation on the bandwidth especially at the database side. Re: Seach engine for database data Programming Web Development by Javvy Maybe you can try breaking the search term into array then concat the query statement to search for it. Re: Seach engine for database data Programming Web Development by smantscheff The query is running on the server and not consuming bandwidth. Bandwidth is consumed by the query results, if they are transmitted as a whole.