Beano wrote: » you're going to have to help us a bit before we can help you. what database? what language? what platform? what have you tried so far? what is it you are trying to achieve? The more information you give us the more we can help you.
Webmonkey wrote: » [php]<?=$PHP_SELF;?>[/php] will not work in PHP5 by default. Try using this instead: [php]$_SERVER[/php]As well you have [php]if ($searching =="yes")[/php]Similarly this won't work as Global variables are turned off. Try using this instead: [php]if (isset($_POST)) {[/php]You also have variables such as $find that need to be done like [php]$find = $_POST;[/php]This may work in some PHP servers but you will have major compatibility problems moving so best to stick to the way i've mentioned above. Hope this helps.
poissys wrote: » im trying to get a search engine working in my database, but it just isnt happening for me. Can someone please give me some advice on where to start?! thanks
Cantab. wrote: » If you want to start from scratch:http://en.wikipedia.org/wiki/Tf-idf I've written a perl seach engine based on TF-IDF. It has very high precision/recall and is very fast. Otherwise, just look on sourceforge.net and I'm sure there are a whole ream of MySQL search plugins. No point in re-inventing the wheel!
poissys wrote: » thanks for that, but are u sure thats teh right link u posted in the post? thanks
Cantab. wrote: » Why don't you just use http://tsep.info/cms/ or something similar?