Building a fulltext search engine with PHP PHP / Searching
In this article I will show you how you can use the database library from eZ publish to build database independent fulltext search engine. I will show you a relatively simple algorithm to get search result ranking and stop words. You will get the full source code for a complete working program to get you started.
Search Engine Friendly PHP Pages PHP / Navigation
When writing scripts, it is extremely important to have to ability to transfer information from one script to another. A common method to do this is with the GET convention. Search engine Web spiders, however, tend to ignore pages whose URL contains GET method parameters.
Create a PHP Search Engine PHP / Searching
This hands on PHP Programming article provides the knowledge necessary to design and develop a search engine for your website using PHP version 4.0 and above. Making a search engine for your website with PHP is really easy and provides substantial functionality required by most of the small to medium websites. This article introduces every steps of the development, including both design and PHP programming.
Building Dynamic Pages With Search Engines in Mind PHP / CMS
Almost any developer knows that search engine placement is critical to the success of a web site. What many people don't know is that a lot of search engines cannot index many database-driven pages (basically any page with a '?' or '&' in the URL).
Displaying an RSS Feed on Your Website Using PHP and MagpieRSS PHP / News and RSS Feeds
These days everybody wants to have fresh content on their web site. Search engines like to see dynamic web pages, where the content is updated on a regular basis. Static pages that have information that doesn't change are not only boring, but less likely to be visited by a search engine spider than a page that changes every time it is displayed.
mySQL Search Engine PHP / Databases
This tutorial will teach you how to search a mySQL table. It goes along with several others that use the same news database such as Add a Row to mySQL, Deleting a Row, and Edit a Row In mySQL.
Using mod_rewrite with Apache and PHP PHP / Navigation
mod_rewrite is a popular Apache Module which gives a server administrator the ability to mask a web site's links. Though mod_rewrite has several abilities and can be used in several ways, the only way focused on by this tutorial is to create Search Engine Friendly links.
Switch navigation with mod_rewrite PHP / Navigation
In this tutorial I will show you how to make PHP switch navigation with mod_rewrite work for your site, it will help your rankings in search engines by making your URLs search engine friendly, and it will make it easier for your users to understand where they are on your site by simply looking at the URL.
Create Dynamic URLs With Mod_Rewrite and PHP Functions PHP / General Development
How to use mod_rewrite for search engine friendly URLs, but have since found the uses lacking. For one thing, you can't pass variables well without adding more commands to mod_rewrite. So here you'll learn to add unlimited parameters to your links with only one simple PHP function.
How to get all META data of a website PHP / General Development
In this tutorial I will show you how you can easy check META information of any website. It can be very usefull in search engine optimization when you want to check your competitors settings.
Creating friendly URLs with mod_rewrite PHP / Navigation
This programming tutorial will teach you how to build search engine friendly URLs in PHP, which contain keywords and use HTML extensions. We are going to use the htaccess file and mod_rewrite module running on an Apache server.
Blocking Bad Agents from downloading your website PHP / Security
If you found this page searching Google or search engine, you must be looking for a solution how to block those bad guys from downloading your whole site. I know exactly how it feels to be ripped off, and I have done some research in this area and found few solutions that really work. I thought I would share this with you so that you could save your bandwidth from illegal downloaders.
Using PHP to search a MySQL database and return paged results PHP / Searching
PHP, MySQL and a Web Server capable of parsing PHP pages, like Apache or IIS. This search script does not spider all your pages by crawling the links, so the content you want to be searchable must be within the database. Knowledge of PHP and MySQL is also necessary because this script is just the bones of a working solution.