Re: [PHP-DB] Search engine

2006-09-29 Thread Niel Archer
Hi Ron This doesn't sound like a Db problem then. You could open each page and use a regex to search for the links. Something like: preg_match_all("/(.*)<\a>/", $page, $matches, PREG_PATTERN_ORDER); which would produce an array ($matches[1]) of the addresses and a array ($matches[2]) of co

Re: [PHP-DB] Search engine

2006-09-29 Thread Rezvan
It's not that complicated, after crawling your website at a specific time you can check for content created in your database after that time. Then you can search specific fields from that content for words and index them. If you need to find tags you'ld best use regular expressions to search th

Re: [PHP-DB] Search engine

2006-09-28 Thread Jeffrey
r data is stored properly without redundant data and in a MySQL database. ___ Shaun Riches Computer Science Student -Original Message- From: Ron Piggott (PHP) [mailto:[EMAIL PROTECTED] Sent: Thu 28/09/2006 03:44 To: PHP DB Subject: [PHP-DB] Search engine

RE: [PHP-DB] Search engine

2006-09-28 Thread Ron Piggott (PHP)
out redundant data > and in a MySQL database. > > ___ > Shaun Riches > Computer Science Student > > > > -Original Message- > From: Ron Piggott (PHP) [mailto:[EMAIL PROTECTED] > Sent: Thu 28/09/2006 03:44 > To: PHP DB > Subject:

Re: [PHP-DB] Search engine

2006-09-28 Thread Niel Archer
Hi > What about the MySQL "LIKE" command? Research it. An excellent start for searching a db, but did you miss the point of the question. He wanted to know if anyone had experience with this to save him building from the ground up. I haven't, l so didn't reply If no other help is forthcoming,

RE: [PHP-DB] Search engine

2006-09-28 Thread Shaun A Riches
Title: RE: [PHP-DB] Search engine What about the MySQL "LIKE" command? Research it. This is assuming your data is stored properly without redundant data and in a MySQL database. ___ Shaun Riches Computer Science Student -Original Message- From: Ron Pi

[PHP-DB] Search engine

2006-09-27 Thread Ron Piggott (PHP)
Has anyone wrote a search engine for the web site? I am wondering if someone has the time to help me walk through doing this. Ron

[PHP-DB] Search engine results

2005-08-13 Thread Ron Piggott
I have wrote a basic search engine PHP script. I have created a mySQL database of the files which are allowed to be searched (Example: directory/file_name.html) When someone enters search criteria the mySQL database is opened and the various web site files are loaded one at a time, dumped into a v

[PHP-DB] search engine query

2004-05-19 Thread Bobo Wieland
Hi! I'm new to this list. I usually try to get my answers at the php-win mailing list... But since this is a mysql question I thought it would be better to ask i t here; How do I get the best result from a simple search (just one input box and a search button) from a mysql db with two tables cont

[PHP-DB] Search engine

2001-12-18 Thread Sharmad Naik
Hi, I wanted to develop a good and fast search engine (robost too) can anyone help me with some ideas. -TIA Sharmad -- Feel free to contact me (flames about my english and the useless of this driver will be redirected to /dev/null, oh no, it's full...). (Michael Beck, desc

Re: [PHP-DB] search engine for database driven site?

2001-09-12 Thread leo g. divinagracia iii
1. use WYSIWYG html editor to make the initial HTM page with a search form with 2 text boxes. 2. the action for the form is the PHP page. 3. connect the two (using the variables in the sql query statement that's what i do... andrew hill wrote: > > Hi, > > Can anyone recommend either a

[PHP-DB] search engine for database driven site?

2001-09-09 Thread andrew hill
Hi, Can anyone recommend either a general approach or sample scripts to create a search-box on my site? It's an existing site being dynamically generated from a database - I want to specify a couple of fields in my main page table to be searched on. cheers, duirfire __

[PHP-DB] Search Engine Registration

2001-04-25 Thread Pranot Kokate
I want to register my site to all the search engines on internet. Can anybody suggest me some best softwares from where I could register. Thank you, Pranot

[PHP-DB] search Engine

2001-02-18 Thread Brandon Feldhahn
Can some one tell me how i would make a search engine, like what talbes and how many fields and what the form should look like -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list admi

Re: [PHP-DB] search engine

2001-01-14 Thread Markus Fischer
Hi, Databases tend not to be the best solution for text index searching what you want. There are better products like glimpse that do what you want. M. On Wed, Jan 10, 2001 at 03:08:14PM +0100, Luescher Samuel (MMVZSLU) wrote : > hi there. i am currently developing an active contant eng

[PHP-DB] search engine

2001-01-10 Thread Luescher Samuel (MMVZSLU)
hi there. i am currently developing an active contant engine for fully dynamic web sites (php4/mysql). now what is a db-powered site without search functionality? nothing. thus, i want to implement an internal search engine. in a nutshell, i have all my content ("pages") stored in a table. the co