|
Building indexers/spiders
This code covers the steps
At some point in your career
This article shows you how to
that can read binary MS Word
required to create Next and
you might get a task to
use PHP and a MySQL (or any
(.doc) documents can be
Previous links and pages for
build a search engine that
SQL database) to create your
difficult, expecially on
Search Results limited by a
runs on PHP. This article
own basic search engine.
*nix servers, which don't
certain number of results
shows you how to quickly
Covers creating SQL tables,
support PHP's COM
per page.
build an internal site
Using regular expressions to
abilities.
Solutions
search engine for your site
match keywords, Connecting
usually involve installing
using PHP and MySQL.
to the database, and
binaries on the server
Returning the results.
(often impossible or
disallowed).
This simple
PHP snippet makes a pretty
good job of extracting text
from an MS Word document for
use in a search index. While
not pretending to be
perfect, it has proved
itself useful on thousands
of test documents.
Date: Apr, 30 2006 Date: Aug, 20 2002 Date: Jan, 14 2002 Date: Jul, 10 2001 |
|
PHP has a built-in function
This hands on PHP Programming
In this tutorial, we will
In this tutorial, we are
to easily fetch meta tags
article provides the
discuss a method of
going to learn how to let
from php or html pages
knowledge necessary to
searching web pages for
users search your site,
called the get_meta_tags
design and develop a search
keywords. We will provide
without building a search
function. It will take all
engine for your website
methods for exact keyword
engine. This can be useful
the meta tags and build
using PHP version 4.0 and
matching and a type of fuzzy
if your pages are all html,
associative arrays with the
above. Making a search
search. Also included in
or you do not have the time
name of the associative
engine for your website with
this tutorial is a overview
to build your own website
array being the
meta name
PHP is really easy and
of using databases in PHP
search engine.
and value of the associative
provides substantial
and a heavy concentration on
array being the contents of
functionality required by
classes.
the meta tag. This tutorial
most of the small to medium
shows how to fetch all the
websites.
meta tags for a given page
and print them to the
browser. Then, it can be
used to build a search
engine that compares the
contents of the meta
variable to the
search_criteria and displays
the matching link.
Date: Jan, 13 2000 Date: Oct, 07 2006 Date: Apr, 19 2005 Date: Jan, 05 2004 |