Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

DZone.com:
MySQL PHP search: four-part video tutorial series
Oct 31, 2011 @ 18:09:29

As linked to on DZone.com today, there's a video series about PHP/MySQL and creating a basic search engine from Adam Khoury's collection:

Fresh from Adam Khoury's massive library of instructional videos comes a four-part, full-fledged tutorial on searching a MySQL database using PHP. The tutorials use the 'worked example' format (like Khan Academy), which makes learning relatively painless for newbies and not completely useless for more experienced developers.

The four videos require you to have at least a decent working knowledge of putting PHP and MySQL together and show you how to:

tagged: video tutorial series search union like fulltext mysql searchengine

Link:

JSLabs:
Wordpress seo: 5 tips for improving search engine visibility
Nov 26, 2007 @ 13:54:00

The JSLabs blog has five quick tips for WordPress users out there on how to make their blogs a bit more "search engine friendly".

The following are 5 changes you can make to your wordpress blog that can improve your search engine visibility.

The methods on the list are:

  • Permalinks
  • Create a sitemap
  • Improve the titles of your articles
  • Site submissions
  • Tagging & Meta Keywords

Details are given on each on implementation.

tagged: searchengine visibility wordpress tips searchengine visibility wordpress tips

Link:

JSLabs:
Wordpress seo: 5 tips for improving search engine visibility
Nov 26, 2007 @ 13:54:00

The JSLabs blog has five quick tips for WordPress users out there on how to make their blogs a bit more "search engine friendly".

The following are 5 changes you can make to your wordpress blog that can improve your search engine visibility.

The methods on the list are:

  • Permalinks
  • Create a sitemap
  • Improve the titles of your articles
  • Site submissions
  • Tagging & Meta Keywords

Details are given on each on implementation.

tagged: searchengine visibility wordpress tips searchengine visibility wordpress tips

Link:

Developer.com:
Creating a Code Search Engine with PHP and MySQL
Apr 12, 2007 @ 14:30:00

Developer.com has posted a new tutorial by Jason Gilmore about the creation of a simple search engine based around a MySQL database and using PHP to perform the queries.

In this article I'll offer a simplified version of this search engine, introducing you to some compelling PHP and MySQL features along the way. You might adopt what you learn towards building your own search engine, or towards other applications.

He starts with the base of the application - the database schema (including loading data into it) - and works up from there. He opts to go with the fulltext search type as it can provide a huge performance boost over just using something like LIKE statements in your query. He also includes a bit of HTML for help make the output easier to use.

tagged: searchengine mysql fulltext html schema searchengine mysql fulltext html schema

Link:

Developer.com:
Creating a Code Search Engine with PHP and MySQL
Apr 12, 2007 @ 14:30:00

Developer.com has posted a new tutorial by Jason Gilmore about the creation of a simple search engine based around a MySQL database and using PHP to perform the queries.

In this article I'll offer a simplified version of this search engine, introducing you to some compelling PHP and MySQL features along the way. You might adopt what you learn towards building your own search engine, or towards other applications.

He starts with the base of the application - the database schema (including loading data into it) - and works up from there. He opts to go with the fulltext search type as it can provide a huge performance boost over just using something like LIKE statements in your query. He also includes a bit of HTML for help make the output easier to use.

tagged: searchengine mysql fulltext html schema searchengine mysql fulltext html schema

Link:

roScripts.com:
PHP search engine
Mar 30, 2007 @ 14:55:00

The roScripts website has a new tutorial that anyone just starting out to create a search engine with PHP and MySQL should get their hands...er eyes on. It steps through the creation of a simple PHP-based search engine, showing multiple methods to achieve the goal.

The right search engine on your website won't bring you more traffic but it will help your visitors to better locate things so it will keep them on your pages. A good search engine implemented can increase your hits with almost 30% and this is tested. I'm not talking just to have a tutorial.

The different methods the show how to implement include:

  • using a straight LIKE on each word entered
  • paring down those results using ORs on other columns too
  • implementing the Porter Stemmer algorithm
  • finding matches that contain the term but not only one part of it
  • Full-text searches

It's a good overview of some of the basic steps to getting your own search up and running, but some of them, when applied to sites with larger amounts of data behind them, wouldn't be useful at all (slowness mainly).

tagged: searchengine like fulltext match porterstemmer searchengine like fulltext match porterstemmer

Link:

roScripts.com:
PHP search engine
Mar 30, 2007 @ 14:55:00

The roScripts website has a new tutorial that anyone just starting out to create a search engine with PHP and MySQL should get their hands...er eyes on. It steps through the creation of a simple PHP-based search engine, showing multiple methods to achieve the goal.

The right search engine on your website won't bring you more traffic but it will help your visitors to better locate things so it will keep them on your pages. A good search engine implemented can increase your hits with almost 30% and this is tested. I'm not talking just to have a tutorial.

The different methods the show how to implement include:

  • using a straight LIKE on each word entered
  • paring down those results using ORs on other columns too
  • implementing the Porter Stemmer algorithm
  • finding matches that contain the term but not only one part of it
  • Full-text searches

It's a good overview of some of the basic steps to getting your own search up and running, but some of them, when applied to sites with larger amounts of data behind them, wouldn't be useful at all (slowness mainly).

tagged: searchengine like fulltext match porterstemmer searchengine like fulltext match porterstemmer

Link:


Trending Topics: